.float-button {
  position: fixed; /* 使按钮保持固定位置 */
  top: 50%; /* 距离底部20像素 */
  transform: translate(0,-50%);
  right: 25px; /* 距离右侧20像素 */
  cursor: pointer; /* 鼠标光标变为指针 */
  z-index: 999; /* 确保按钮在最上层 */
  width: 86px;
  height: 260px;
  background-color: #fff;
  border: #C0C0C0 1px solid;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.float-jinglian-two{
  position: fixed; /* 使按钮保持固定位置 */
  top: 50%; /* 距离底部20像素 */
  right: 121px; /* 距离右侧20像素 */
  z-index: 999; /* 确保按钮在最上层 */
  width: 168px;
  height: 186px;
}
.float-jinglian-two-1{
  transform: translate(0,-186px);
  background: url(../images/btn-jinglian-wx-two-1.png) no-repeat right center;
  display: none;
}
.float-jinglian-two-2{
  transform: translate(0,-50%);
  background: url(../images/btn-jinglian-wx-two-2.png) no-repeat right center;
  display: none;
}
.float-jinglian-two-3{
  transform: translate(0,57px);
  background: url(../images/btn-jinglian-wx-two-3.png) no-repeat right center;
  display: none;
}
.float-jinglian-two-show{
  display: block;
}

.float-button .button-item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.float-button .button-item:hover{
  transform: scale(1.1);
  
}
.float-button .dur-line{
  width: 61px;
  height: 1px;
  background-color: #DEDDDD;
  margin-top: 17px;
  margin-bottom: 17px;
}
.float-button .button-item .item-name{
  color: #333;
  font-size: 13px;
  font-weight: 400;
}
.float-button .button-item .item-name1{
  margin-top: 10px;
}